home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
mxcode
/
adpcmsrc
/
adpcm.h
< prev
next >
Wrap
C/C++ Source or Header
|
1993-10-17
|
372b
|
14 lines
/*
** adpcm.h - include file for adpcm coder.
**
** Version 1.0, 7-Jul-92.
*/
struct adpcm_state {
short valprev; /* Previous output value */
char index; /* Index into stepsize table */
};
void adpcm_coder (short [], char [], long, struct adpcm_state *);
void adpcm_decoder (char [], short [], int, struct adpcm_state *);